home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 1_general / dcc / raw < prev    next >
Encoding:
Text File  |  2001-03-21  |  1013 b   |  28 lines

  1. Synopsis:
  2.    dcc raw <fd> <host> <message>
  3.  
  4. Description:
  5.    DCC RAW is a raw socket interface for ircII-EPIC.  It allows the client
  6.    to control arbitrary TCP connections with a remote host on any port
  7.    desired.
  8.  
  9.    The actual connection is established with the $connect() function.  It
  10.    makes the connection and returns a file descriptor that is used by DCC
  11.    RAW to control the connection.  The file descriptor will always be a
  12.    number (generally a small one).  Incoming data from the remote host may
  13.    be hooked with ON DCC_RAW.
  14.  
  15. Examples:
  16.    To send a message to blah.foo.com over an existing raw DCC connection:
  17.       /dcc raw 6 blah.foo.com This is a sample message
  18.  
  19. See Also:
  20.    connect(6); listen(6); on(5) dcc_raw
  21.  
  22. Other Notes:
  23.    The applications for DCC RAW are endless.  Since it allows the client
  24.    connect to any arbitrary host on any arbitrary port, a little creative
  25.    use of the scripting language can turn ircII-EPIC into a client for
  26.    most any remote service.
  27.  
  28.